-; UltimateKEYS (for AutoHotkey v2.0).ahk - 2022-10-22
+; UltimateKEYS (for AutoHotkey v2.0).ahk - 2022-11-08
; Website : www.ultimatekeys.info (pieter-degroote.github.io/UltimateKEYS/)
global gEndKeys := "{bs}{del}{esc}{home}{end}" ; ends dead key input on specific keys
+; Compose : Acute Accent (')
+
+global cmpAcuteAccent := Map()
+cmpAcuteAccent["a"] := "{u+00e1}" ; (á) a with acute
+cmpAcuteAccent["A"] := "{u+00c1}" ; (Á) A with acute
+cmpAcuteAccent["c"] := "{u+0107}" ; (ć) c with acute
+cmpAcuteAccent["C"] := "{u+0106}" ; (Ć) C with acute
+cmpAcuteAccent["e"] := "{u+00e9}" ; (é) e with acute
+cmpAcuteAccent["E"] := "{u+00c9}" ; (É) E with acute
+cmpAcuteAccent["g"] := "{u+01f5}" ; (ǵ) g with acute
+cmpAcuteAccent["G"] := "{u+01f4}" ; (Ǵ) G with acute
+cmpAcuteAccent["i"] := "{u+00ed}" ; (í) i with acute
+cmpAcuteAccent["I"] := "{u+00cd}" ; (Í) I with acute
+cmpAcuteAccent["k"] := "{u+1e31}" ; (ḱ) k with acute
+cmpAcuteAccent["K"] := "{u+1e30}" ; (Ḱ) K with acute
+cmpAcuteAccent["l"] := "{u+013a}" ; (ĺ) l with acute
+cmpAcuteAccent["L"] := "{u+0139}" ; (Ĺ) L with acute
+cmpAcuteAccent["m"] := "{u+1e3f}" ; (ḿ) m with acute
+cmpAcuteAccent["M"] := "{u+1e3e}" ; (Ḿ) M with acute
+cmpAcuteAccent["n"] := "{u+0144}" ; (ń) n with acute
+cmpAcuteAccent["N"] := "{u+0143}" ; (Ń) N with acute
+cmpAcuteAccent["o"] := "{u+00f3}" ; (ó) o with acute
+cmpAcuteAccent["O"] := "{u+00d3}" ; (Ó) O with acute
+cmpAcuteAccent["p"] := "{u+1e55}" ; (ṕ) p with acute
+cmpAcuteAccent["P"] := "{u+1e54}" ; (Ṕ) P with acute
+cmpAcuteAccent["r"] := "{u+0155}" ; (ŕ) r with acute
+cmpAcuteAccent["R"] := "{u+0154}" ; (Ŕ) R with acute
+cmpAcuteAccent["s"] := "{u+015b}" ; (ś) s with acute
+cmpAcuteAccent["S"] := "{u+015a}" ; (Ś) S with acute
+cmpAcuteAccent["u"] := "{u+00fa}" ; (ú) u with acute
+cmpAcuteAccent["U"] := "{u+00da}" ; (Ú) U with acute
+cmpAcuteAccent["w"] := "{u+1e83}" ; (ẃ) w with acute
+cmpAcuteAccent["W"] := "{u+1e82}" ; (Ẃ) W with acute
+cmpAcuteAccent["y"] := "{u+00fd}" ; (ý) y with acute
+cmpAcuteAccent["Y"] := "{u+00dd}" ; (Ý) Y with acute
+cmpAcuteAccent["z"] := "{u+017a}" ; (ź) z with acute
+cmpAcuteAccent["Z"] := "{u+0179}" ; (Ź) Z with acute
+cmpAcuteAccent[" "] := "{u+00b4}" ; (´) acute accent
+
+
+; Compose : Grave Accent (`)
+
+global cmpGraveAccent := Map()
+cmpGraveAccent["a"] := "{u+00e0}" ; (à) a with grave
+cmpGraveAccent["A"] := "{u+00c0}" ; (À) A with grave
+cmpGraveAccent["e"] := "{u+00e8}" ; (è) e with grave
+cmpGraveAccent["E"] := "{u+00c8}" ; (È) E with grave
+cmpGraveAccent["i"] := "{u+00ec}" ; (ì) i with grave
+cmpGraveAccent["I"] := "{u+00cc}" ; (Ì) I with grave
+cmpGraveAccent["n"] := "{u+01f9}" ; (ǹ) n with grave
+cmpGraveAccent["N"] := "{u+01f8}" ; (Ǹ) N with grave
+cmpGraveAccent["o"] := "{u+00f2}" ; (ò) o with grave
+cmpGraveAccent["O"] := "{u+00d2}" ; (Ò) O with grave
+cmpGraveAccent["u"] := "{u+00f9}" ; (ù) u with grave
+cmpGraveAccent["U"] := "{u+00d9}" ; (Ù) U with grave
+cmpGraveAccent["w"] := "{u+1e81}" ; (ẁ) w with grave
+cmpGraveAccent["W"] := "{u+1e80}" ; (Ẁ) W with grave
+cmpGraveAccent["y"] := "{u+1ef3}" ; (ỳ) y with grave
+cmpGraveAccent["Y"] := "{u+1ef2}" ; (Ỳ) Y with grave
+cmpGraveAccent[" "] := "{u+02cb}" ; (ˋ) grave accent (modifier)
+
+
+; Compose : Diaeresis (")
+
+global cmpDiaeresis := Map()
+cmpDiaeresis["a"] := "{u+00e4}" ; (ä) a with diaeresis
+cmpDiaeresis["A"] := "{u+00c4}" ; (Ä) A with diaeresis
+cmpDiaeresis["e"] := "{u+00eb}" ; (ë) e with diaeresis
+cmpDiaeresis["E"] := "{u+00cb}" ; (Ë) E with diaeresis
+cmpDiaeresis["h"] := "{u+1e27}" ; (ḧ) h with diaeresis
+cmpDiaeresis["H"] := "{u+1e26}" ; (Ḧ) H with diaeresis
+cmpDiaeresis["i"] := "{u+00ef}" ; (ï) i with diaeresis
+cmpDiaeresis["I"] := "{u+00cf}" ; (Ï) I with diaeresis
+cmpDiaeresis["o"] := "{u+00f6}" ; (ö) o with diaeresis
+cmpDiaeresis["O"] := "{u+00d6}" ; (Ö) O with diaeresis
+cmpDiaeresis["t"] := "{u+1e97}" ; (ẗ) t with diaeresis
+cmpDiaeresis["u"] := "{u+00fc}" ; (ü) u with diaeresis
+cmpDiaeresis["U"] := "{u+00dc}" ; (Ü) U with diaeresis
+cmpDiaeresis["w"] := "{u+1e85}" ; (ẅ) w with diaeresis
+cmpDiaeresis["W"] := "{u+1e84}" ; (Ẅ) W with diaeresis
+cmpDiaeresis["x"] := "{u+1e8d}" ; (ẍ) x with diaeresis
+cmpDiaeresis["X"] := "{u+1e8c}" ; (Ẍ) X with diaeresis
+cmpDiaeresis["y"] := "{u+00ff}" ; (ÿ) y with diaeresis
+cmpDiaeresis["Y"] := "{u+0178}" ; (Ÿ) Y with diaeresis
+cmpDiaeresis[" "] := "{u+00a8}" ; (¨) diaeresis
+
+
; Compose : Circumflex Accent (c)
global cmpCircumflex := Map()
cmpCircumflex[" "] := "{u+02c6}" ; (ˆ) circumflex accent (modifier)
+; Compose : Tilde (~)
+
+global cmpTilde := Map()
+cmpTilde["a"] := "{u+00e3}" ; (ã) a with tilde
+cmpTilde["A"] := "{u+00c3}" ; (Ã) A with tilde
+cmpTilde["e"] := "{u+1ebd}" ; (ẽ) e with tilde
+cmpTilde["E"] := "{u+1ebc}" ; (Ẽ) E with tilde
+cmpTilde["i"] := "{u+0129}" ; (ĩ) i with tilde
+cmpTilde["I"] := "{u+0128}" ; (Ĩ) I with tilde
+cmpTilde["l"] := "{u+026b}" ; (ɫ) l with middle tilde
+cmpTilde["L"] := "{u+2c62}" ; (Ɫ) L with middle tilde
+cmpTilde["n"] := "{u+00f1}" ; (ñ) n with tilde
+cmpTilde["N"] := "{u+00d1}" ; (Ñ) N with tilde
+cmpTilde["o"] := "{u+00f5}" ; (õ) o with tilde
+cmpTilde["O"] := "{u+00d5}" ; (Õ) O with tilde
+cmpTilde["u"] := "{u+0169}" ; (ũ) u with tilde
+cmpTilde["U"] := "{u+0168}" ; (Ũ) U with tilde
+cmpTilde["v"] := "{u+1e7d}" ; (ṽ) v with tilde
+cmpTilde["V"] := "{u+1e7c}" ; (Ṽ) V with tilde
+cmpTilde["y"] := "{u+1ef9}" ; (ỹ) y with tilde
+cmpTilde["Y"] := "{u+1ef8}" ; (Ỹ) Y with tilde
+cmpTilde[" "] := "{u+02dc}" ; (˜) small tilde
+
+
+; Compose : Cedilla and Ogonek (,)
+
+global cmpCedillaOgonek := Map()
+cmpCedillaOgonek["a"] := "{u+0105}" ; (ą) a with ogonek
+cmpCedillaOgonek["A"] := "{u+0104}" ; (Ą) A with ogonek
+cmpCedillaOgonek["c"] := "{u+00e7}" ; (ç) c with cedilla
+cmpCedillaOgonek["C"] := "{u+00c7}" ; (Ç) C with cedilla
+cmpCedillaOgonek["d"] := "{u+1e11}" ; (ḑ) d with cedilla
+cmpCedillaOgonek["D"] := "{u+1e10}" ; (Ḑ) D with cedilla
+cmpCedillaOgonek["e"] := "{u+0119}" ; (ę) e with ogonek
+cmpCedillaOgonek["E"] := "{u+0118}" ; (Ę) E with ogonek
+cmpCedillaOgonek["f"] := "{u+0229}" ; (ȩ) e with cedilla
+cmpCedillaOgonek["F"] := "{u+0228}" ; (Ȩ) E with cedilla
+cmpCedillaOgonek["g"] := "{u+0123}" ; (ģ) g with cedilla
+cmpCedillaOgonek["G"] := "{u+0122}" ; (Ģ) G with cedilla
+cmpCedillaOgonek["h"] := "{u+1e29}" ; (ḩ) h with cedilla
+cmpCedillaOgonek["H"] := "{u+1e28}" ; (Ḩ) H with cedilla
+cmpCedillaOgonek["i"] := "{u+012f}" ; (į) i with ogonek
+cmpCedillaOgonek["I"] := "{u+012e}" ; (Į) I with ogonek
+cmpCedillaOgonek["k"] := "{u+0137}" ; (ķ) k with cedilla
+cmpCedillaOgonek["K"] := "{u+0136}" ; (Ķ) K with cedilla
+cmpCedillaOgonek["l"] := "{u+013c}" ; (ļ) l with cedilla
+cmpCedillaOgonek["L"] := "{u+013b}" ; (Ļ) L with cedilla
+cmpCedillaOgonek["n"] := "{u+0146}" ; (ņ) n with cedilla
+cmpCedillaOgonek["N"] := "{u+0145}" ; (Ņ) N with cedilla
+cmpCedillaOgonek["o"] := "{u+01eb}" ; (ǫ) o with ogonek
+cmpCedillaOgonek["O"] := "{u+01ea}" ; (Ǫ) O with ogonek
+cmpCedillaOgonek["r"] := "{u+0157}" ; (ŗ) r with cedilla
+cmpCedillaOgonek["R"] := "{u+0156}" ; (Ŗ) R with cedilla
+cmpCedillaOgonek["s"] := "{u+015f}" ; (ş) s with cedilla
+cmpCedillaOgonek["S"] := "{u+015e}" ; (Ş) S with cedilla
+cmpCedillaOgonek["t"] := "{u+0163}" ; (ţ) t with cedilla
+cmpCedillaOgonek["T"] := "{u+0162}" ; (Ţ) T with cedilla
+cmpCedillaOgonek["u"] := "{u+0173}" ; (ų) u with ogonek
+cmpCedillaOgonek["U"] := "{u+0172}" ; (Ų) U with ogonek
+cmpCedillaOgonek["."] := "{u+02db}" ; (˛) ogonek
+cmpCedillaOgonek[" "] := "{u+00b8}" ; (¸) cedilla
+
+
; Compose : Caron (v)
global cmpCaron := Map()
cmpDotAbove["O"] := "{u+022e}" ; (Ȯ) O with dot above
cmpDotAbove["p"] := "{u+1e57}" ; (ṗ) p with dot above
cmpDotAbove["P"] := "{u+1e56}" ; (Ṗ) P with dot above
+cmpDotAbove["q"] := "{u+1e9b}" ; (ẛ) long s with dot above
cmpDotAbove["r"] := "{u+1e59}" ; (ṙ) r with dot above
cmpDotAbove["R"] := "{u+1e58}" ; (Ṙ) R with dot above
cmpDotAbove["s"] := "{u+1e61}" ; (ṡ) s with dot above
cmpRingAbove["y"] := "{u+1e99}" ; (ẙ) y with ring above
-; Compose : Macron/Stroke (-)
+; Compose : Macron and Stroke (-)
global cmpMacronStroke := Map()
cmpMacronStroke["a"] := "{u+0101}" ; (ā) a with macron
cmpMacronStroke[" "] := "{u+00af}" ; (¯) macron
-; Compose : Macron/Stroke (Additional) (_)
+; Compose : Macron and Stroke (additional) (_)
global cmpMacronStrokeAdd := Map()
cmpMacronStrokeAdd["g"] := "{u+1e21}" ; (ḡ) g with macron
cmpMacronStrokeAdd["I"] := "{u+0197}" ; (Ɨ) I with stroke
cmpMacronStrokeAdd["l"] := "{u+019a}" ; (ƚ) l with bar
cmpMacronStrokeAdd["L"] := "{u+023d}" ; (Ƚ) L with bar
+cmpMacronStrokeAdd["o"] := "{u+0275}" ; (ɵ) barred o
+cmpMacronStrokeAdd["O"] := "{u+019f}" ; (Ɵ) O with middle tilde
cmpMacronStrokeAdd["u"] := "{u+0289}" ; (ʉ) u with bar
cmpMacronStrokeAdd["U"] := "{u+0244}" ; (Ʉ) U with bar
cmpMacronStrokeAdd["y"] := "{u+024f}" ; (ɏ) y with stroke
cmpStroke["C"] := "{u+023b}" ; (Ȼ) C with stroke
cmpStroke["e"] := "{u+0247}" ; (ɇ) e with stroke
cmpStroke["E"] := "{u+0246}" ; (Ɇ) E with stroke
-cmpStroke["f"] := "{u+1e9c}" ; (ẜ) long s with diagonal stroke
cmpStroke["g"] := "{u+a7a1}" ; (ꞡ) g with oblique stroke
cmpStroke["G"] := "{u+a7a0}" ; (Ꞡ) G with oblique stroke
cmpStroke["k"] := "{u+a7a3}" ; (ꞣ) k with oblique stroke
cmpStroke["N"] := "{u+a7a4}" ; (Ꞥ) N with oblique stroke
cmpStroke["o"] := "{u+00f8}" ; (ø) o with stroke
cmpStroke["O"] := "{u+00d8}" ; (Ø) O with stroke
+cmpStroke["q"] := "{u+1e9c}" ; (ẜ) long s with diagonal stroke
cmpStroke["r"] := "{u+a7a7}" ; (ꞧ) r with oblique stroke
cmpStroke["R"] := "{u+a7a6}" ; (Ꞧ) R with oblique stroke
cmpStroke["s"] := "{u+a7a9}" ; (ꞩ) s with oblique stroke
cmpStroke["T"] := "{u+023e}" ; (Ⱦ) T with stroke
-; Compose : Cedilla/Ogonek (,)
-
-global cmpCedillaOgonek := Map()
-cmpCedillaOgonek["a"] := "{u+0105}" ; (ą) a with ogonek
-cmpCedillaOgonek["A"] := "{u+0104}" ; (Ą) A with ogonek
-cmpCedillaOgonek["c"] := "{u+00e7}" ; (ç) c with cedilla
-cmpCedillaOgonek["C"] := "{u+00c7}" ; (Ç) C with cedilla
-cmpCedillaOgonek["d"] := "{u+1e11}" ; (ḑ) d with cedilla
-cmpCedillaOgonek["D"] := "{u+1e10}" ; (Ḑ) D with cedilla
-cmpCedillaOgonek["e"] := "{u+0119}" ; (ę) e with ogonek
-cmpCedillaOgonek["E"] := "{u+0118}" ; (Ę) E with ogonek
-cmpCedillaOgonek["f"] := "{u+0229}" ; (ȩ) e with cedilla
-cmpCedillaOgonek["F"] := "{u+0228}" ; (Ȩ) E with cedilla
-cmpCedillaOgonek["g"] := "{u+0123}" ; (ģ) g with cedilla
-cmpCedillaOgonek["G"] := "{u+0122}" ; (Ģ) G with cedilla
-cmpCedillaOgonek["h"] := "{u+1e29}" ; (ḩ) h with cedilla
-cmpCedillaOgonek["H"] := "{u+1e28}" ; (Ḩ) H with cedilla
-cmpCedillaOgonek["i"] := "{u+012f}" ; (į) i with ogonek
-cmpCedillaOgonek["I"] := "{u+012e}" ; (Į) I with ogonek
-cmpCedillaOgonek["k"] := "{u+0137}" ; (ķ) k with cedilla
-cmpCedillaOgonek["K"] := "{u+0136}" ; (Ķ) K with cedilla
-cmpCedillaOgonek["l"] := "{u+013c}" ; (ļ) l with cedilla
-cmpCedillaOgonek["L"] := "{u+013b}" ; (Ļ) L with cedilla
-cmpCedillaOgonek["n"] := "{u+0146}" ; (ņ) n with cedilla
-cmpCedillaOgonek["N"] := "{u+0145}" ; (Ņ) N with cedilla
-cmpCedillaOgonek["o"] := "{u+01eb}" ; (ǫ) o with ogonek
-cmpCedillaOgonek["O"] := "{u+01ea}" ; (Ǫ) O with ogonek
-cmpCedillaOgonek["r"] := "{u+0157}" ; (ŗ) r with cedilla
-cmpCedillaOgonek["R"] := "{u+0156}" ; (Ŗ) R with cedilla
-cmpCedillaOgonek["s"] := "{u+015f}" ; (ş) s with cedilla
-cmpCedillaOgonek["S"] := "{u+015e}" ; (Ş) S with cedilla
-cmpCedillaOgonek["t"] := "{u+0163}" ; (ţ) t with cedilla
-cmpCedillaOgonek["T"] := "{u+0162}" ; (Ţ) T with cedilla
-cmpCedillaOgonek["u"] := "{u+0173}" ; (ų) u with ogonek
-cmpCedillaOgonek["U"] := "{u+0172}" ; (Ų) U with ogonek
-cmpCedillaOgonek["."] := "{u+02db}" ; (˛) ogonek
-cmpCedillaOgonek[" "] := "{u+00b8}" ; (¸) cedilla
-
-
; Compose : Breve and Special Letters (b)
global cmpBreveSpecial := Map()
cmpBreveSpecial["G"] := "{u+011e}" ; (Ğ) G with breve
cmpBreveSpecial["i"] := "{u+012d}" ; (ĭ) i with breve
cmpBreveSpecial["I"] := "{u+012c}" ; (Ĭ) I with breve
-cmpBreveSpecial["n"] := "{u+014b}" ; (ŋ) small letter eng(ma)
-cmpBreveSpecial["N"] := "{u+014a}" ; (Ŋ) capital letter eng(ma)
cmpBreveSpecial["o"] := "{u+014f}" ; (ŏ) o with breve
cmpBreveSpecial["O"] := "{u+014e}" ; (Ŏ) O with breve
cmpBreveSpecial["s"] := "{u+0219}" ; (ș) s with comma below (Romanian)
cmpBreveSpecial["y"] := "{u+021d}" ; (ȝ) small letter yogh
cmpBreveSpecial["Y"] := "{u+021c}" ; (Ȝ) capital letter yogh
cmpBreveSpecial["3"] := "{u+0292}" ; (ʒ) small letter ezh
-cmpBreveSpecial["#"] := "{u+01b7}" ; (Ʒ) capital letter ezh
-cmpBreveSpecial[" "] := "{u+02d8}" ; (˘) breve
-
-
-; Compose : Inverted Breve (B)
-
-global cmpInvertedBreve := Map()
-cmpInvertedBreve["a"] := "{u+0203}" ; (ȃ) a with inverted breve
-cmpInvertedBreve["A"] := "{u+0202}" ; (Ȃ) A with inverted breve
-cmpInvertedBreve["e"] := "{u+0207}" ; (ȇ) e with inverted breve
-cmpInvertedBreve["E"] := "{u+0206}" ; (Ȇ) E with inverted breve
-cmpInvertedBreve["i"] := "{u+020b}" ; (ȋ) i with inverted breve
-cmpInvertedBreve["I"] := "{u+020a}" ; (Ȋ) I with inverted breve
-cmpInvertedBreve["o"] := "{u+020f}" ; (ȏ) o with inverted breve
-cmpInvertedBreve["O"] := "{u+020e}" ; (Ȏ) O with inverted breve
-cmpInvertedBreve["r"] := "{u+0213}" ; (ȓ) r with inverted breve
-cmpInvertedBreve["R"] := "{u+0212}" ; (Ȓ) R with inverted breve
-cmpInvertedBreve["u"] := "{u+0217}" ; (ȗ) u with inverted breve
-cmpInvertedBreve["U"] := "{u+0216}" ; (Ȗ) U with inverted breve
-
-
-; Compose : Acute Accent (')
-
-global cmpAcuteAccent := Map()
-cmpAcuteAccent["a"] := "{u+00e1}" ; (á) a with acute
-cmpAcuteAccent["A"] := "{u+00c1}" ; (Á) A with acute
-cmpAcuteAccent["c"] := "{u+0107}" ; (ć) c with acute
-cmpAcuteAccent["C"] := "{u+0106}" ; (Ć) C with acute
-cmpAcuteAccent["e"] := "{u+00e9}" ; (é) e with acute
-cmpAcuteAccent["E"] := "{u+00c9}" ; (É) E with acute
-cmpAcuteAccent["g"] := "{u+01f5}" ; (ǵ) g with acute
-cmpAcuteAccent["G"] := "{u+01f4}" ; (Ǵ) G with acute
-cmpAcuteAccent["i"] := "{u+00ed}" ; (í) i with acute
-cmpAcuteAccent["I"] := "{u+00cd}" ; (Í) I with acute
-cmpAcuteAccent["k"] := "{u+1e31}" ; (ḱ) k with acute
-cmpAcuteAccent["K"] := "{u+1e30}" ; (Ḱ) K with acute
-cmpAcuteAccent["l"] := "{u+013a}" ; (ĺ) l with acute
-cmpAcuteAccent["L"] := "{u+0139}" ; (Ĺ) L with acute
-cmpAcuteAccent["m"] := "{u+1e3f}" ; (ḿ) m with acute
-cmpAcuteAccent["M"] := "{u+1e3e}" ; (Ḿ) M with acute
-cmpAcuteAccent["n"] := "{u+0144}" ; (ń) n with acute
-cmpAcuteAccent["N"] := "{u+0143}" ; (Ń) N with acute
-cmpAcuteAccent["o"] := "{u+00f3}" ; (ó) o with acute
-cmpAcuteAccent["O"] := "{u+00d3}" ; (Ó) O with acute
-cmpAcuteAccent["p"] := "{u+1e55}" ; (ṕ) p with acute
-cmpAcuteAccent["P"] := "{u+1e54}" ; (Ṕ) P with acute
-cmpAcuteAccent["r"] := "{u+0155}" ; (ŕ) r with acute
-cmpAcuteAccent["R"] := "{u+0154}" ; (Ŕ) R with acute
-cmpAcuteAccent["s"] := "{u+015b}" ; (ś) s with acute
-cmpAcuteAccent["S"] := "{u+015a}" ; (Ś) S with acute
-cmpAcuteAccent["u"] := "{u+00fa}" ; (ú) u with acute
-cmpAcuteAccent["U"] := "{u+00da}" ; (Ú) U with acute
-cmpAcuteAccent["w"] := "{u+1e83}" ; (ẃ) w with acute
-cmpAcuteAccent["W"] := "{u+1e82}" ; (Ẃ) W with acute
-cmpAcuteAccent["y"] := "{u+00fd}" ; (ý) y with acute
-cmpAcuteAccent["Y"] := "{u+00dd}" ; (Ý) Y with acute
-cmpAcuteAccent["z"] := "{u+017a}" ; (ź) z with acute
-cmpAcuteAccent["Z"] := "{u+0179}" ; (Ź) Z with acute
-cmpAcuteAccent[" "] := "{u+00b4}" ; (´) acute accent
-
-
-; Compose : Diaeresis (")
-
-global cmpDiaeresis := Map()
-cmpDiaeresis["a"] := "{u+00e4}" ; (ä) a with diaeresis
-cmpDiaeresis["A"] := "{u+00c4}" ; (Ä) A with diaeresis
-cmpDiaeresis["e"] := "{u+00eb}" ; (ë) e with diaeresis
-cmpDiaeresis["E"] := "{u+00cb}" ; (Ë) E with diaeresis
-cmpDiaeresis["h"] := "{u+1e27}" ; (ḧ) h with diaeresis
-cmpDiaeresis["H"] := "{u+1e26}" ; (Ḧ) H with diaeresis
-cmpDiaeresis["i"] := "{u+00ef}" ; (ï) i with diaeresis
-cmpDiaeresis["I"] := "{u+00cf}" ; (Ï) I with diaeresis
-cmpDiaeresis["o"] := "{u+00f6}" ; (ö) o with diaeresis
-cmpDiaeresis["O"] := "{u+00d6}" ; (Ö) O with diaeresis
-cmpDiaeresis["t"] := "{u+1e97}" ; (ẗ) t with diaeresis
-cmpDiaeresis["u"] := "{u+00fc}" ; (ü) u with diaeresis
-cmpDiaeresis["U"] := "{u+00dc}" ; (Ü) U with diaeresis
-cmpDiaeresis["w"] := "{u+1e85}" ; (ẅ) w with diaeresis
-cmpDiaeresis["W"] := "{u+1e84}" ; (Ẅ) W with diaeresis
-cmpDiaeresis["x"] := "{u+1e8d}" ; (ẍ) x with diaeresis
-cmpDiaeresis["X"] := "{u+1e8c}" ; (Ẍ) X with diaeresis
-cmpDiaeresis["y"] := "{u+00ff}" ; (ÿ) y with diaeresis
-cmpDiaeresis["Y"] := "{u+0178}" ; (Ÿ) Y with diaeresis
-cmpDiaeresis[" "] := "{u+00a8}" ; (¨) diaeresis
-
-
-; Compose : Double Acute Accent (=)
-
-global cmpDoubleAcute := Map()
-cmpDoubleAcute["o"] := "{u+0151}" ; (ő) o with double acute
-cmpDoubleAcute["O"] := "{u+0150}" ; (Ő) O with double acute
-cmpDoubleAcute["u"] := "{u+0171}" ; (ű) u with double acute
-cmpDoubleAcute["U"] := "{u+0170}" ; (Ű) U with double acute
-cmpDoubleAcute[" "] := "{u+02dd}" ; (˝) double acute accent
-
-
-; Compose : Grave Accent (`)
-
-global cmpGraveAccent := Map()
-cmpGraveAccent["a"] := "{u+00e0}" ; (à) a with grave
-cmpGraveAccent["A"] := "{u+00c0}" ; (À) A with grave
-cmpGraveAccent["e"] := "{u+00e8}" ; (è) e with grave
-cmpGraveAccent["E"] := "{u+00c8}" ; (È) E with grave
-cmpGraveAccent["i"] := "{u+00ec}" ; (ì) i with grave
-cmpGraveAccent["I"] := "{u+00cc}" ; (Ì) I with grave
-cmpGraveAccent["n"] := "{u+01f9}" ; (ǹ) n with grave
-cmpGraveAccent["N"] := "{u+01f8}" ; (Ǹ) N with grave
-cmpGraveAccent["o"] := "{u+00f2}" ; (ò) o with grave
-cmpGraveAccent["O"] := "{u+00d2}" ; (Ò) O with grave
-cmpGraveAccent["u"] := "{u+00f9}" ; (ù) u with grave
-cmpGraveAccent["U"] := "{u+00d9}" ; (Ù) U with grave
-cmpGraveAccent["w"] := "{u+1e81}" ; (ẁ) w with grave
-cmpGraveAccent["W"] := "{u+1e80}" ; (Ẁ) W with grave
-cmpGraveAccent["y"] := "{u+1ef3}" ; (ỳ) y with grave
-cmpGraveAccent["Y"] := "{u+1ef2}" ; (Ỳ) Y with grave
-cmpGraveAccent[" "] := "{u+02cb}" ; (ˋ) grave accent (modifier)
+cmpBreveSpecial["#"] := "{u+01b7}" ; (Ʒ) capital letter ezh
+cmpBreveSpecial[" "] := "{u+02d8}" ; (˘) breve
+
+
+; Compose : Double Acute Accent (=)
+
+global cmpDoubleAcute := Map()
+cmpDoubleAcute["o"] := "{u+0151}" ; (ő) o with double acute
+cmpDoubleAcute["O"] := "{u+0150}" ; (Ő) O with double acute
+cmpDoubleAcute["u"] := "{u+0171}" ; (ű) u with double acute
+cmpDoubleAcute["U"] := "{u+0170}" ; (Ű) U with double acute
+cmpDoubleAcute[" "] := "{u+02dd}" ; (˝) double acute accent
; Compose : Double Grave Accent (G)
cmpDoubleGrave["U"] := "{u+0214}" ; (Ȕ) U with double grave
-; Compose : Tilde (~)
+; Compose : Inverted Breve (B)
-global cmpTilde := Map()
-cmpTilde["a"] := "{u+00e3}" ; (ã) a with tilde
-cmpTilde["A"] := "{u+00c3}" ; (Ã) A with tilde
-cmpTilde["e"] := "{u+1ebd}" ; (ẽ) e with tilde
-cmpTilde["E"] := "{u+1ebc}" ; (Ẽ) E with tilde
-cmpTilde["i"] := "{u+0129}" ; (ĩ) i with tilde
-cmpTilde["I"] := "{u+0128}" ; (Ĩ) I with tilde
-cmpTilde["l"] := "{u+026b}" ; (ɫ) l with middle tilde
-cmpTilde["L"] := "{u+2c62}" ; (Ɫ) L with middle tilde
-cmpTilde["n"] := "{u+00f1}" ; (ñ) n with tilde
-cmpTilde["N"] := "{u+00d1}" ; (Ñ) N with tilde
-cmpTilde["o"] := "{u+00f5}" ; (õ) o with tilde
-cmpTilde["O"] := "{u+00d5}" ; (Õ) O with tilde
-cmpTilde["u"] := "{u+0169}" ; (ũ) u with tilde
-cmpTilde["U"] := "{u+0168}" ; (Ũ) U with tilde
-cmpTilde["v"] := "{u+1e7d}" ; (ṽ) v with tilde
-cmpTilde["V"] := "{u+1e7c}" ; (Ṽ) V with tilde
-cmpTilde["y"] := "{u+1ef9}" ; (ỹ) y with tilde
-cmpTilde["Y"] := "{u+1ef8}" ; (Ỹ) Y with tilde
-cmpTilde[" "] := "{u+02dc}" ; (˜) small tilde
+global cmpInvertedBreve := Map()
+cmpInvertedBreve["a"] := "{u+0203}" ; (ȃ) a with inverted breve
+cmpInvertedBreve["A"] := "{u+0202}" ; (Ȃ) A with inverted breve
+cmpInvertedBreve["e"] := "{u+0207}" ; (ȇ) e with inverted breve
+cmpInvertedBreve["E"] := "{u+0206}" ; (Ȇ) E with inverted breve
+cmpInvertedBreve["i"] := "{u+020b}" ; (ȋ) i with inverted breve
+cmpInvertedBreve["I"] := "{u+020a}" ; (Ȋ) I with inverted breve
+cmpInvertedBreve["o"] := "{u+020f}" ; (ȏ) o with inverted breve
+cmpInvertedBreve["O"] := "{u+020e}" ; (Ȏ) O with inverted breve
+cmpInvertedBreve["r"] := "{u+0213}" ; (ȓ) r with inverted breve
+cmpInvertedBreve["R"] := "{u+0212}" ; (Ȓ) R with inverted breve
+cmpInvertedBreve["u"] := "{u+0217}" ; (ȗ) u with inverted breve
+cmpInvertedBreve["U"] := "{u+0216}" ; (Ȗ) U with inverted breve
; Compose : Hook and Horn (h)
-global cmpHook := Map()
-cmpHook["b"] := "{u+0253}" ; (ɓ) b with hook
-cmpHook["B"] := "{u+0181}" ; (Ɓ) B with hook
-cmpHook["c"] := "{u+0188}" ; (ƈ) c with hook
-cmpHook["C"] := "{u+0187}" ; (Ƈ) C with hook
-cmpHook["d"] := "{u+0257}" ; (ɗ) d with hook
-cmpHook["D"] := "{u+018a}" ; (Ɗ) D with hook
-cmpHook["f"] := "{u+0192}" ; (ƒ) f with hook
-cmpHook["F"] := "{u+0191}" ; (Ƒ) F with hook
-cmpHook["g"] := "{u+0260}" ; (ɠ) g with hook
-cmpHook["G"] := "{u+0193}" ; (Ɠ) G with hook
-cmpHook["h"] := "{u+0266}" ; (ɦ) h with hook
-cmpHook["H"] := "{u+a7aa}" ; (Ɦ) H with hook
-cmpHook["j"] := "{u+0267}" ; (ɧ) small letter heng with hook
-cmpHook["k"] := "{u+0199}" ; (ƙ) k with hook
-cmpHook["K"] := "{u+0198}" ; (Ƙ) K with hook
-cmpHook["m"] := "{u+0271}" ; (ɱ) m with hook
-cmpHook["M"] := "{u+2c6e}" ; (Ɱ) M with hook
-cmpHook["n"] := "{u+0272}" ; (ɲ) n with left hook
-cmpHook["N"] := "{u+019d}" ; (Ɲ) N with left hook
-cmpHook["o"] := "{u+01a1}" ; (ơ) o with horn
-cmpHook["O"] := "{u+01a0}" ; (Ơ) O with horn
-cmpHook["p"] := "{u+01a5}" ; (ƥ) p with hook
-cmpHook["P"] := "{u+01a4}" ; (Ƥ) P with hook
-cmpHook["q"] := "{u+024b}" ; (ɋ) q with hook tail
-cmpHook["Q"] := "{u+024a}" ; (Ɋ) Q with hook tail
-cmpHook["r"] := "{u+027d}" ; (ɽ) r with tail
-cmpHook["R"] := "{u+2c64}" ; (Ɽ) R with tail
-cmpHook["t"] := "{u+01ad}" ; (ƭ) t with hook
-cmpHook["T"] := "{u+01ac}" ; (Ƭ) T with hook
-cmpHook["u"] := "{u+01b0}" ; (ư) u with horn
-cmpHook["U"] := "{u+01af}" ; (Ư) U with horn
-cmpHook["v"] := "{u+028b}" ; (ʋ) v with hook
-cmpHook["V"] := "{u+01b2}" ; (Ʋ) V with hook
-cmpHook["w"] := "{u+2c73}" ; (ⱳ) w with hook
-cmpHook["W"] := "{u+2c72}" ; (Ⱳ) W with hook
-cmpHook["y"] := "{u+01b4}" ; (ƴ) y with hook
-cmpHook["Y"] := "{u+01b3}" ; (Ƴ) Y with hook
-cmpHook["z"] := "{u+0225}" ; (ȥ) z with hook
-cmpHook["Z"] := "{u+0224}" ; (Ȥ) Z with hook
+global cmpSmallH := Map()
+cmpSmallH["b"] := "{u+0253}" ; (ɓ) b with hook
+cmpSmallH["B"] := "{u+0181}" ; (Ɓ) B with hook
+cmpSmallH["c"] := "{u+0188}" ; (ƈ) c with hook
+cmpSmallH["C"] := "{u+0187}" ; (Ƈ) C with hook
+cmpSmallH["d"] := "{u+0257}" ; (ɗ) d with hook
+cmpSmallH["D"] := "{u+018a}" ; (Ɗ) D with hook
+cmpSmallH["e"] := "{u+025a}" ; (ɚ) small letter schwa with hook
+cmpSmallH["f"] := "{u+0192}" ; (ƒ) f with hook
+cmpSmallH["F"] := "{u+0191}" ; (Ƒ) F with hook
+cmpSmallH["g"] := "{u+0260}" ; (ɠ) g with hook
+cmpSmallH["G"] := "{u+0193}" ; (Ɠ) G with hook
+cmpSmallH["h"] := "{u+0266}" ; (ɦ) h with hook
+cmpSmallH["H"] := "{u+a7aa}" ; (Ɦ) H with hook
+cmpSmallH["k"] := "{u+0199}" ; (ƙ) k with hook
+cmpSmallH["K"] := "{u+0198}" ; (Ƙ) K with hook
+cmpSmallH["m"] := "{u+0271}" ; (ɱ) m with hook
+cmpSmallH["M"] := "{u+2c6e}" ; (Ɱ) M with hook
+cmpSmallH["n"] := "{u+0272}" ; (ɲ) n with left hook
+cmpSmallH["N"] := "{u+019d}" ; (Ɲ) N with left hook
+cmpSmallH["o"] := "{u+01a1}" ; (ơ) o with horn
+cmpSmallH["O"] := "{u+01a0}" ; (Ơ) O with horn
+cmpSmallH["p"] := "{u+01a5}" ; (ƥ) p with hook
+cmpSmallH["P"] := "{u+01a4}" ; (Ƥ) P with hook
+cmpSmallH["q"] := "{u+024b}" ; (ɋ) q with hook tail
+cmpSmallH["Q"] := "{u+024a}" ; (Ɋ) Q with hook tail
+cmpSmallH["r"] := "{u+027d}" ; (ɽ) r with tail
+cmpSmallH["R"] := "{u+2c64}" ; (Ɽ) R with tail
+cmpSmallH["s"] := "{u+0282}" ; (ʂ) s with hook
+cmpSmallH["t"] := "{u+01ad}" ; (ƭ) t with hook
+cmpSmallH["T"] := "{u+01ac}" ; (Ƭ) T with hook
+cmpSmallH["u"] := "{u+01b0}" ; (ư) u with horn
+cmpSmallH["U"] := "{u+01af}" ; (Ư) U with horn
+cmpSmallH["v"] := "{u+028b}" ; (ʋ) v with hook
+cmpSmallH["V"] := "{u+01b2}" ; (Ʋ) V with hook
+cmpSmallH["w"] := "{u+2c73}" ; (ⱳ) w with hook
+cmpSmallH["W"] := "{u+2c72}" ; (Ⱳ) W with hook
+cmpSmallH["y"] := "{u+01b4}" ; (ƴ) y with hook
+cmpSmallH["Y"] := "{u+01b3}" ; (Ƴ) Y with hook
+cmpSmallH["z"] := "{u+0225}" ; (ȥ) z with hook
+cmpSmallH["Z"] := "{u+0224}" ; (Ȥ) Z with hook
+
+
+; Compose : Retroflex Hook, Crossed-Tail and Variations (f)
+
+global cmpSmallF := Map()
+cmpSmallF["a"] := "{u+1d8f}" ; (ᶏ) a with retroflex hook
+cmpSmallF["d"] := "{u+1d91}" ; (ᶑ) d with hook and tail
+cmpSmallF["e"] := "{u+1d92}" ; (ᶒ) e with retroflex hook
+cmpSmallF["f"] := "{u+1d93}" ; (ᶓ) small letter open e with retroflex hook
+cmpSmallF["g"] := "{u+ab36}" ; (ꬶ) small letter script g with crossed-tail
+cmpSmallF["h"] := "{u+0267}" ; (ɧ) small letter heng with hook
+cmpSmallF["i"] := "{u+1d96}" ; (ᶖ) i with retroflex hook
+cmpSmallF["j"] := "{u+029d}" ; (ʝ) j with crossed-tail
+cmpSmallF["l"] := "{u+026d}" ; (ɭ) l with retroflex hook
+cmpSmallF["n"] := "{u+0273}" ; (ɳ) n with retroflex hook
+cmpSmallF["o"] := "{u+1d97}" ; (ᶗ) small letter open o with retroflex hook
+cmpSmallF["q"] := "{u+1d90}" ; (ᶐ) Latin small letter alpha with retroflex hook
+cmpSmallF["r"] := "{u+027e}" ; (ɾ) r with fishhook
+cmpSmallF["t"] := "{u+0288}" ; (ʈ) t with retroflex hook
+cmpSmallF["T"] := "{u+01ae}" ; (Ʈ) T with retroflex hook
+cmpSmallF["u"] := "{u+1d99}" ; (ᶙ) u with retroflex hook
+cmpSmallF["v"] := "{u+2c71}" ; (ⱱ) v with right hook
+cmpSmallF["w"] := "{u+2c73}" ; (ⱳ) w with right hook
+cmpSmallF["W"] := "{u+2c72}" ; (Ⱳ) W with right hook
+cmpSmallF["z"] := "{u+0290}" ; (ʐ) z with retroflex hook
; Compose : Latin Greek Letters and Variations (l)
-global cmpLatinGreek := Map()
-cmpLatinGreek["a"] := "{u+0251}" ; (ɑ) Latin small letter alpha
-cmpLatinGreek["A"] := "{u+2c6d}" ; (Ɑ) Latin capital letter alpha
-cmpLatinGreek["c"] := "{u+ab36}" ; (ꬶ) small letter script g with crossed-tail
-cmpLatinGreek["e"] := "{u+025b}" ; (ɛ) small letter open e (Latin small epsilon)
-cmpLatinGreek["E"] := "{u+0190}" ; (Ɛ) capital letter open E (Latin capital epsilon)
-cmpLatinGreek["f"] := "{u+017f}" ; (ſ) small letter long s
-cmpLatinGreek["F"] := "{u+1e9b}" ; (ẛ) long s with dot above
-cmpLatinGreek["g"] := "{u+0263}" ; (ɣ) Latin small letter gamma
-cmpLatinGreek["G"] := "{u+0194}" ; (Ɣ) Latin capital letter gamma
-cmpLatinGreek["h"] := "{u+a727}" ; (ꜧ) small letter heng
-cmpLatinGreek["H"] := "{u+a726}" ; (Ꜧ) capital letter heng
-cmpLatinGreek["i"] := "{u+0269}" ; (ɩ) Latin small letter iota
-cmpLatinGreek["I"] := "{u+0196}" ; (Ɩ) Latin capital letter iota
-cmpLatinGreek["k"] := "{u+0138}" ; (ĸ) small letter kra
-cmpLatinGreek["o"] := "{u+0254}" ; (ɔ) small letter open o
-cmpLatinGreek["O"] := "{u+0186}" ; (Ɔ) capital letter open O
-cmpLatinGreek["s"] := "{u+0283}" ; (ʃ) small letter esh
-cmpLatinGreek["S"] := "{u+01a9}" ; (Ʃ) capital letter esh
-cmpLatinGreek["u"] := "{u+028a}" ; (ʊ) Latin small letter upsilon
-cmpLatinGreek["U"] := "{u+01b1}" ; (Ʊ) Latin capital letter upsilon
-
-
-; Compose : Turned Letters (t)
-
-global cmpTurned := Map()
-cmpTurned["a"] := "{u+0250}" ; (ɐ) Latin small letter turned a
-cmpTurned["A"] := "{u+2c6f}" ; (Ɐ) Latin capital letter turned A
-cmpTurned["e"] := "{u+01dd}" ; (ǝ) Latin small letter turned e
-cmpTurned["E"] := "{u+018e}" ; (Ǝ) Latin capital letter reversed E
-cmpTurned["q"] := "{u+0252}" ; (ɒ) Latin small letter turned alpha
-cmpTurned["Q"] := "{u+2c70}" ; (Ɒ) Latin capital letter turned alpha
-cmpTurned["v"] := "{u+028c}" ; (ʌ) Latin small letter turned v
-cmpTurned["V"] := "{u+0245}" ; (Ʌ) Latin capital letter turned V
-cmpTurned["y"] := "{u+028e}" ; (ʎ) Latin small letter turned y
+global cmpSmallL := Map()
+cmpSmallL["a"] := "{u+0251}" ; (ɑ) Latin small letter alpha
+cmpSmallL["A"] := "{u+2c6d}" ; (Ɑ) Latin capital letter alpha
+cmpSmallL["d"] := "{u+1e9f}" ; (ẟ) Latin small letter delta
+cmpSmallL["e"] := "{u+025b}" ; (ɛ) small letter open e (Latin small epsilon)
+cmpSmallL["E"] := "{u+0190}" ; (Ɛ) capital letter open E (Latin capital epsilon)
+cmpSmallL["f"] := "{u+0278}" ; (ɸ) Latin small letter phi
+cmpSmallL["g"] := "{u+0261}" ; (ɡ) small letter script g
+cmpSmallL["G"] := "{u+a7ac}" ; (Ɡ) capital letter script G
+cmpSmallL["h"] := "{u+a727}" ; (ꜧ) small letter heng
+cmpSmallL["H"] := "{u+a726}" ; (Ꜧ) capital letter heng
+cmpSmallL["i"] := "{u+0269}" ; (ɩ) Latin small letter iota
+cmpSmallL["I"] := "{u+0196}" ; (Ɩ) Latin capital letter iota
+cmpSmallL["j"] := "{u+0263}" ; (ɣ) Latin small letter gamma
+cmpSmallL["J"] := "{u+0194}" ; (Ɣ) Latin capital letter gamma
+cmpSmallL["k"] := "{u+0138}" ; (ĸ) small letter kra
+cmpSmallL["m"] := "{u+0270}" ; (ɰ) small letter turned m with long leg
+cmpSmallL["n"] := "{u+019e}" ; (ƞ) small letter n with long right leg
+cmpSmallL["N"] := "{u+0220}" ; (Ƞ) capital letter N with long right leg
+cmpSmallL["o"] := "{u+0254}" ; (ɔ) small letter open o
+cmpSmallL["O"] := "{u+0186}" ; (Ɔ) capital letter open O
+cmpSmallL["q"] := "{u+01a3}" ; (ƣ) small letter gha
+cmpSmallL["Q"] := "{u+01a2}" ; (Ƣ) capital letter gha
+cmpSmallL["s"] := "{u+0283}" ; (ʃ) small letter esh
+cmpSmallL["S"] := "{u+01a9}" ; (Ʃ) capital letter esh
+cmpSmallL["u"] := "{u+028a}" ; (ʊ) Latin small letter upsilon
+cmpSmallL["U"] := "{u+01b1}" ; (Ʊ) Latin capital letter upsilon
+
+
+; Compose : Turned Letters (r)
+
+global cmpSmallR := Map()
+cmpSmallR["a"] := "{u+0250}" ; (ɐ) small letter turned a
+cmpSmallR["A"] := "{u+2c6f}" ; (Ɐ) capital letter turned A
+cmpSmallR["c"] := "{u+025c}" ; (ɜ) small letter reversed open e
+cmpSmallR["d"] := "{u+018d}" ; (ƍ) Latin small letter turned delta
+cmpSmallR["e"] := "{u+01dd}" ; (ǝ) small letter turned e
+cmpSmallR["E"] := "{u+018e}" ; (Ǝ) capital letter reversed E
+cmpSmallR["f"] := "{u+0258}" ; (ɘ) small letter reversed e
+cmpSmallR["g"] := "{u+1d77}" ; (ᵷ) small letter turned g
+cmpSmallR["G"] := "{u+2141}" ; (⅁) capital letter turned G
+cmpSmallR["h"] := "{u+0265}" ; (ɥ) small letter turned h
+cmpSmallR["H"] := "{u+a78d}" ; (Ɥ) capital letter turned H
+cmpSmallR["i"] := "{u+1d09}" ; (ᴉ) small letter turned i
+cmpSmallR["k"] := "{u+029e}" ; (ʞ) small letter turned k
+cmpSmallR["K"] := "{u+a7b0}" ; (Ʞ) capital letter turned K
+cmpSmallR["m"] := "{u+026f}" ; (ɯ) small letter turned m
+cmpSmallR["M"] := "{u+019c}" ; (Ɯ) capital letter turned M
+cmpSmallR["o"] := "{u+0264}" ; (ɤ) small letter rams horn
+cmpSmallR["q"] := "{u+0252}" ; (ɒ) Latin small letter turned alpha
+cmpSmallR["Q"] := "{u+2c70}" ; (Ɒ) Latin capital letter turned alpha
+cmpSmallR["r"] := "{u+0279}" ; (ɹ) small letter turned r
+cmpSmallR["t"] := "{u+0287}" ; (ʇ) small letter turned t
+cmpSmallR["v"] := "{u+028c}" ; (ʌ) small letter turned v
+cmpSmallR["V"] := "{u+0245}" ; (Ʌ) capital letter turned V
+cmpSmallR["w"] := "{u+028d}" ; (ʍ) small letter turned w
+cmpSmallR["y"] := "{u+028e}" ; (ʎ) small letter turned y
; Compose : Currency Symbols ($)
cmpDoubleAcute["0"] := "{u+21d4}" ; (⇔) left right double arrow
-; Compose : Miscellaneous Symbols (s)
+; Compose : Various Symbols (s)
global cmpSymbols := Map()
cmpSymbols["a"] := "{u+214d}" ; (⅍) aktieselskab
+cmpSymbols["b"] := "{u+2e18}" ; (⸘) inverted interrobang
cmpSymbols["c"] := "{u+2105}" ; (℅) care of
cmpSymbols["d"] := "{u+22c4}" ; (⋄) diamond operator
cmpSymbols["e"] := "{u+212e}" ; (℮) estimated symbol
-cmpSymbols["f"] := "{u+2640}" ; (♀) Venus symbol (female)
+cmpSymbols["f"] := "{u+2640}" ; (♀) female sign (Venus)
+cmpSymbols["h"] := "{u+2126}" ; (Ω) ohm sign (backwards compatibility)
cmpSymbols["i"] := "{u+2300}" ; (⌀) diameter sign
cmpSymbols["l"] := "{u+2113}" ; (ℓ) script small l
cmpSymbols["L"] := "{u+2112}" ; (ℒ) Laplace transform
-cmpSymbols["m"] := "{u+2642}" ; (♂) Mars symbol (male)
+cmpSymbols["m"] := "{u+2642}" ; (♂) male sign (Mars)
cmpSymbols["M"] := "{u+2120}" ; (℠) service mark
-cmpSymbols["n"] := "{u+2709}" ; (✉) envelope
-cmpSymbols["q"] := "{u+2126}" ; (Ω) ohm sign (backwards compatibility)
+cmpSymbols["q"] := "{u+2e2e}" ; (⸮) reversed question mark
cmpSymbols["r"] := "{u+211e}" ; (℞) prescription take (Recipere)
cmpSymbols["R"] := "{u+211e}" ; (℞) prescription take (Recipere)
-cmpSymbols["t"] := "{u+2706}" ; (✆) telephone location sign
-cmpSymbols["v"] := "{u+2713}" ; (✓) check mark
-cmpSymbols["V"] := "{u+2714}" ; (✔) heavy check mark
-cmpSymbols["w"] := "{u+26a0}" ; (⚠) warning sign
-cmpSymbols["x"] := "{u+2717}" ; (✗) ballot x
-cmpSymbols["X"] := "{u+2718}" ; (✘) heavy ballot x
-cmpSymbols["y"] := "{u+2713}" ; (✓) check mark
-cmpSymbols["Y"] := "{u+2714}" ; (✔) heavy check mark
cmpSymbols["2"] := "{u+266b}" ; (♫) beamed eighth notes
cmpSymbols["3"] := "{u+2042}" ; (⁂) asterism
-cmpSymbols["5"] := "{u+2605}" ; (★) black star
-cmpSymbols["%"] := "{u+2606}" ; (☆) white star
-cmpSymbols["6"] := "{u+273d}" ; (✽) heavy teardrop-spoked asterisk
-cmpSymbols["^"] := "{u+273b}" ; (✻) teardrop-spoked asterisk
cmpSymbols["8"] := "{u+266a}" ; (♪) eighth note
-cmpSymbols[";"] := "{u+263a}" ; (☺) white smiling face
-cmpSymbols[":"] := "{u+263b}" ; (☻) black smiling face
cmpSymbols["!"] := "{u+203c}" ; (‼) double exclamation mark
cmpSymbols["?"] := "{u+203d}" ; (‽) interrobang
cmpSymbols["\"] := "{u+205e}" ; (⁞) vertical four dots
cmpSymbols["|"] := "{u+00a6}" ; (¦) broken bar
-cmpSymbols["."] := "{u+2e18}" ; (⸘) inverted interrobang
-cmpSymbols["/"] := "{u+2e2e}" ; (⸮) reversed question mark
-
-
-; Compose : Florette and Floral Heart Symbols (f)
-
-global cmpFlorette := Map()
-cmpFlorette["r"] := "{u+2619}" ; (☙) reversed rotated floral heart bullet
-cmpFlorette["6"] := "{u+273e}" ; (✾) six petalled black and white florette
-cmpFlorette["b"] := "{u+273f}" ; (✿) black florette
-cmpFlorette["w"] := "{u+2740}" ; (❀) white florette
-cmpFlorette["8"] := "{u+2741}" ; (❁) eight petalled outlined black florette
-cmpFlorette["f"] := "{u+2766}" ; (❦) floral heart
-cmpFlorette["h"] := "{u+2767}" ; (❧) rotated floral heart bullet
-
-
-; Compose : Chess Symbols (C)
-
-global cmpCapitalC := Map()
-cmpCapitalC["k"] := "{u+2654}" ; (♔) white chess king
-cmpCapitalC["q"] := "{u+2655}" ; (♕) white chess queen
-cmpCapitalC["r"] := "{u+2656}" ; (♖) white chess rook
-cmpCapitalC["b"] := "{u+2657}" ; (♗) white chess bishop
-cmpCapitalC["n"] := "{u+2658}" ; (♘) white chess knight
-cmpCapitalC["p"] := "{u+2659}" ; (♙) white chess pawn
-cmpCapitalC["K"] := "{u+265a}" ; (♚) black chess king
-cmpCapitalC["Q"] := "{u+265b}" ; (♛) black chess queen
-cmpCapitalC["R"] := "{u+265c}" ; (♜) black chess rook
-cmpCapitalC["B"] := "{u+265d}" ; (♝) black chess bishop
-cmpCapitalC["N"] := "{u+265e}" ; (♞) black chess knight
-cmpCapitalC["P"] := "{u+265f}" ; (♟) black chess pawn
-
-
-; Compose : Playing Card Suit Symbols (S)
-
-global cmpCapitalS := Map()
-cmpCapitalS["c"] := "{u+2663}" ; (♣) black club suit
-cmpCapitalS["C"] := "{u+2667}" ; (♧) white club suit
-cmpCapitalS["d"] := "{u+2666}" ; (♦) black diamond suit
-cmpCapitalS["D"] := "{u+2662}" ; (♢) white diamond suit
-cmpCapitalS["h"] := "{u+2665}" ; (♥) black heart suit
-cmpCapitalS["H"] := "{u+2661}" ; (♡) white heart suit
-cmpCapitalS["p"] := "{u+2660}" ; (♠) black spade suit
-cmpCapitalS["P"] := "{u+2664}" ; (♤) white spade suit
-
-
-; Compose : Vulgar Fractions
-
-global cmpOne := Map()
-global cmpTwo := Map()
-global cmpThree := Map()
-global cmpFour := Map()
-global cmpFive := Map()
-global cmpSeven := Map()
-global cmpZero := Map()
-cmpOne["2"] := "{u+00bd}" ; (½) vulgar fraction 1/2
-cmpOne["3"] := "{u+2153}" ; (⅓) vulgar fraction 1/3
-cmpTwo["3"] := "{u+2154}" ; (⅔) vulgar fraction 2/3
-cmpOne["4"] := "{u+00bc}" ; (¼) vulgar fraction 1/4
-cmpThree["4"] := "{u+00be}" ; (¾) vulgar fraction 3/4
-cmpOne["5"] := "{u+2155}" ; (⅕) vulgar fraction 1/5
-cmpTwo["5"] := "{u+2156}" ; (⅖) vulgar fraction 2/5
-cmpThree["5"] := "{u+2157}" ; (⅗) vulgar fraction 3/5
-cmpFour["5"] := "{u+2158}" ; (⅘) vulgar fraction 4/5
-cmpOne["6"] := "{u+2159}" ; (⅙) vulgar fraction 1/6
-cmpFive["6"] := "{u+215a}" ; (⅚) vulgar fraction 5/6
-cmpOne["7"] := "{u+2150}" ; (⅐) vulgar fraction 1/7
-cmpOne["8"] := "{u+215b}" ; (⅛) vulgar fraction 1/8
-cmpThree["8"] := "{u+215c}" ; (⅜) vulgar fraction 3/8
-cmpFive["8"] := "{u+215d}" ; (⅝) vulgar fraction 5/8
-cmpSeven["8"] := "{u+215e}" ; (⅞) vulgar fraction 7/8
-cmpOne["9"] := "{u+2151}" ; (⅑) vulgar fraction 1/9
-cmpOne["0"] := "{u+2152}" ; (⅒) vulgar fraction 1/10
-cmpZero["3"] := "{u+2189}" ; (↉) vulgar fraction 0/3
; Compose : Math Symbols (m)
global cmpCapitalD := Map()
global cmpSmallI := Map()
global cmpCapitalI := Map()
+global cmpSmallN := Map()
+global cmpCapitalN := Map()
global cmpCapitalO := Map()
+global cmpCapitalS := Map()
+global cmpSmallT := Map()
global cmpCapitalT := Map()
cmpArrow["e"] := "{u+00e6}" ; (æ) letter ae
cmpCapitalA["E"] := "{u+00c6}" ; (Æ) letter AE
cmpSmallD["h"] := "{u+00f0}" ; (ð) small letter eth
cmpCapitalD["H"] := "{u+00d0}" ; (Ð) capital letter eth
+cmpSmallF["s"] := "{u+017f}" ; (ſ) small letter long s
cmpSmallI["j"] := "{u+0133}" ; (ij) ligature ij
cmpCapitalI["J"] := "{u+0132}" ; (IJ) ligature IJ
+cmpSmallN["g"] := "{u+014b}" ; (ŋ) small letter eng(ma)
+cmpCapitalN["G"] := "{u+014a}" ; (Ŋ) capital letter eng(ma)
cmpRingAbove["e"] := "{u+0153}" ; (œ) ligature oe
cmpCapitalO["E"] := "{u+0152}" ; (Œ) ligature OE
cmpSymbols["s"] := "{u+00df}" ; (ß) small sharp s (Eszett)
cmpCapitalS["S"] := "{u+1e9e}" ; (ẞ) capital sharp S (capital Eszett)
-cmpTurned["h"] := "{u+00fe}" ; (þ) small letter thorn
+cmpSmallT["h"] := "{u+00fe}" ; (þ) small letter thorn
cmpCapitalT["H"] := "{u+00de}" ; (Þ) capital letter thorn
; Compose : General/Math Symbols
-global cmpEight := Map()
-global cmpSmallN := Map()
-global cmpCapitalN := Map()
+global cmpDigitEight := Map()
global cmpCapitalP := Map()
-global cmpSmallR := Map()
+global cmpSemicolon := Map()
global cmpAsterisk := Map()
global cmpExclam := Map()
global cmpQuestion := Map()
global cmpPercent := Map()
global cmpLessThan := Map()
global cmpGreaterThan := Map()
-global cmpBracketLeft := Map()
cmpSmallD["d"] := "{u+2020}" ; (†) dagger
cmpCapitalD["D"] := "{u+2021}" ; (‡) double dagger
cmpSmallI["i"] := "{u+221e}" ; (∞) infinity symbol
-cmpEight["8"] := "{u+221e}" ; (∞) infinity symbol
+cmpDigitEight["8"] := "{u+221e}" ; (∞) infinity symbol
cmpMathSymbols["i"] := "{u+00b5}" ; (µ) micro sign
cmpSmallN["o"] := "{u+2116}" ; (№) numero sign
cmpCapitalN["o"] := "{u+2116}" ; (№) numero sign
cmpSmallR["4"] := "{u+221c}" ; (∜) fourth root
cmpSymbols["o"] := "{u+00a7}" ; (§) section sign
cmpCapitalS["o"] := "{u+00a7}" ; (§) section sign
-cmpTurned["m"] := "{u+2122}" ; (™) trademark symbol
+cmpSmallT["m"] := "{u+2122}" ; (™) trademark symbol
+cmpSemicolon["b"] := "{u+2022}" ; (•) bullet
+cmpSemicolon[";"] := "{u+2022}" ; (•) bullet
+cmpSemicolon["t"] := "{u+2023}" ; (‣) triangular bullet
+cmpSemicolon["h"] := "{u+2043}" ; (⁃) hyphen bullet
+cmpSemicolon["w"] := "{u+25e6}" ; (◦) white bullet
cmpAcuteAccent["1"] := "{u+2032}" ; (′) prime
cmpAcuteAccent["2"] := "{u+2033}" ; (″) double prime
cmpAcuteAccent["3"] := "{u+2034}" ; (‴) triple prime
cmpLessThan["+"] := "{u+2a7d}" ; (⩽) less-than or slanted equal to
cmpGreaterThan["+"] := "{u+2a7e}" ; (⩾) greater-than or slanted equal to
cmpTilde["~"] := "{u+2248}" ; (≈) almost equal to
-cmpBracketLeft["]"] := "{u+2610}" ; (☐) ballot box
-cmpBracketLeft["v"] := "{u+2611}" ; (☑) ballot box with check
-cmpBracketLeft["y"] := "{u+2611}" ; (☑) ballot box with check
-cmpBracketLeft["x"] := "{u+2612}" ; (☒) ballot box with x
-; Compose : Bullets and Arrowheads (;)
+; Compose : Vulgar Fractions
-global cmpSemicolon := Map()
-cmpSemicolon["a"] := "{u+27a4}" ; (➤) black rightwards arrowhead
-cmpSemicolon["b"] := "{u+2022}" ; (•) bullet
-cmpSemicolon[";"] := "{u+2022}" ; (•) bullet
-cmpSemicolon["d"] := "{u+27a5}" ; (➥) heavy black curved downwards and rightwards arrow
-cmpSemicolon["h"] := "{u+2043}" ; (⁃) hyphen bullet
-cmpSemicolon["-"] := "{u+2043}" ; (⁃) hyphen bullet
-cmpSemicolon["p"] := "{u+27a8}" ; (➨) heavy concave-pointed black rightwards arrow
-cmpSemicolon["q"] := "{u+27a7}" ; (➧) squat black rightwards arrow
-cmpSemicolon["r"] := "{u+27a1}" ; (➡) black rightwards arrow
-cmpSemicolon["t"] := "{u+2023}" ; (‣) triangular bullet
-cmpSemicolon["u"] := "{u+27a6}" ; (➦) heavy black curved upwards and rightwards arrow
-cmpSemicolon["w"] := "{u+25e6}" ; (◦) white bullet
-cmpSemicolon["3"] := "{u+27a2}" ; (➢) 3d top-lighted rightwards arrowhead
-cmpSemicolon["#"] := "{u+27a3}" ; (➣) 3d bottom-lighted rightwards arrowhead
+global cmpDigitOne := Map()
+global cmpDigitTwo := Map()
+global cmpDigitThree := Map()
+global cmpDigitFour := Map()
+global cmpDigitFive := Map()
+global cmpDigitSeven := Map()
+global cmpDigitZero := Map()
+cmpDigitOne["2"] := "{u+00bd}" ; (½) vulgar fraction 1/2
+cmpDigitOne["3"] := "{u+2153}" ; (⅓) vulgar fraction 1/3
+cmpDigitTwo["3"] := "{u+2154}" ; (⅔) vulgar fraction 2/3
+cmpDigitOne["4"] := "{u+00bc}" ; (¼) vulgar fraction 1/4
+cmpDigitThree["4"] := "{u+00be}" ; (¾) vulgar fraction 3/4
+cmpDigitOne["5"] := "{u+2155}" ; (⅕) vulgar fraction 1/5
+cmpDigitTwo["5"] := "{u+2156}" ; (⅖) vulgar fraction 2/5
+cmpDigitThree["5"] := "{u+2157}" ; (⅗) vulgar fraction 3/5
+cmpDigitFour["5"] := "{u+2158}" ; (⅘) vulgar fraction 4/5
+cmpDigitOne["6"] := "{u+2159}" ; (⅙) vulgar fraction 1/6
+cmpDigitFive["6"] := "{u+215a}" ; (⅚) vulgar fraction 5/6
+cmpDigitOne["7"] := "{u+2150}" ; (⅐) vulgar fraction 1/7
+cmpDigitOne["8"] := "{u+215b}" ; (⅛) vulgar fraction 1/8
+cmpDigitThree["8"] := "{u+215c}" ; (⅜) vulgar fraction 3/8
+cmpDigitFive["8"] := "{u+215d}" ; (⅝) vulgar fraction 5/8
+cmpDigitSeven["8"] := "{u+215e}" ; (⅞) vulgar fraction 7/8
+cmpDigitOne["9"] := "{u+2151}" ; (⅑) vulgar fraction 1/9
+cmpDigitOne["0"] := "{u+2152}" ; (⅒) vulgar fraction 1/10
+cmpDigitZero["3"] := "{u+2189}" ; (↉) vulgar fraction 0/3
; Compose : Quotation Marks
+global cmpBracketLeft := Map()
global cmpBracketRight := Map()
cmpCedillaOgonek[chr(34)] := "{u+201e}" ; („) double low-9 quotation mark
cmpDiaeresis[","] := "{u+201e}" ; („) double low-9 quotation mark
; Compose : Letters with Two Diacritical Marks
+global cmpCapitalC := Map()
global cmpSmallE := Map()
global cmpCapitalE := Map()
global cmpCapitalV := Map()
cmpCapitalV["``"] := "{u+01db}" ; (Ǜ) U with diaeresis and grave
+; Compose : Miscellaneous Symbols and Dingbats
+
+global cmpDigitSix := Map()
+
+cmpDigitOne["a"] := "{u+2600}" ; (☀) black sun with rays
+cmpDigitOne["b"] := "{u+2601}" ; (☁) cloud
+cmpDigitOne["c"] := "{u+2602}" ; (☂) umbrella
+cmpDigitOne["d"] := "{u+2603}" ; (☃) snowman
+cmpDigitOne["e"] := "{u+2604}" ; (☄) comet
+cmpDigitOne["f"] := "{u+2605}" ; (★) black star
+cmpDigitOne["g"] := "{u+2606}" ; (☆) white star
+cmpDigitOne["h"] := "{u+260e}" ; (☎) black telephone
+cmpDigitOne["i"] := "{u+260f}" ; (☏) white telephone
+cmpDigitOne["j"] := "{u+2610}" ; (☐) ballot box
+cmpDigitOne["k"] := "{u+2611}" ; (☑) ballot box with check
+cmpDigitOne["l"] := "{u+2612}" ; (☒) ballot box with x
+cmpDigitOne["m"] := "{u+2619}" ; (☙) reversed rotated floral heart bullet
+cmpDigitOne["n"] := "{u+261a}" ; (☚) black left-pointing index
+cmpDigitOne["o"] := "{u+261b}" ; (☛) black right-pointing index
+cmpDigitOne["p"] := "{u+261c}" ; (☜) white left-pointing index
+cmpDigitOne["q"] := "{u+261d}" ; (☝) white up-pointing index
+cmpDigitOne["r"] := "{u+261e}" ; (☞) white right-pointing index
+cmpDigitOne["s"] := "{u+261f}" ; (☟) white down-pointing index
+cmpDigitOne["t"] := "{u+2620}" ; (☠) skull and crossbones
+cmpDigitOne["u"] := "{u+2621}" ; (☡) caution sign
+cmpDigitOne["v"] := "{u+2622}" ; (☢) radioactive sign
+cmpDigitOne["w"] := "{u+2623}" ; (☣) biohazard sign
+cmpDigitOne["x"] := "{u+2639}" ; (☹) white frowning face
+cmpDigitOne["y"] := "{u+263a}" ; (☺) white smiling face
+cmpDigitOne["z"] := "{u+263b}" ; (☻) black smiling face
+
+cmpDigitTwo["a"] := "{u+263c}" ; (☼) white sun with rays
+cmpDigitTwo["b"] := "{u+263d}" ; (☽) first quarter moon
+cmpDigitTwo["c"] := "{u+263e}" ; (☾) last quarter moon
+cmpDigitTwo["d"] := "{u+2640}" ; (♀) female sign (Venus)
+cmpDigitTwo["e"] := "{u+2642}" ; (♂) male sign (Mars)
+cmpDigitTwo["f"] := "{u+2668}" ; (♨) hot springs
+cmpDigitTwo["g"] := "{u+2669}" ; (♩) quarter note
+cmpDigitTwo["h"] := "{u+266a}" ; (♪) eighth note
+cmpDigitTwo["i"] := "{u+266b}" ; (♫) beamed eighth notes
+cmpDigitTwo["j"] := "{u+266c}" ; (♬) beamed sixteenth notes
+cmpDigitTwo["k"] := "{u+266d}" ; (♭) music flat sign
+cmpDigitTwo["l"] := "{u+266e}" ; (♮) music natural sign
+cmpDigitTwo["m"] := "{u+266f}" ; (♯) music sharp sign
+cmpDigitTwo["n"] := "{u+2672}" ; (♲) universal recycling symbol
+cmpDigitTwo["o"] := "{u+267a}" ; (♺) recycling symbol for generic materials
+cmpDigitTwo["p"] := "{u+267b}" ; (♻) black universal recycling symbol
+cmpDigitTwo["q"] := "{u+267f}" ; (♿) wheelchair symbol
+cmpDigitTwo["r"] := "{u+2690}" ; (⚐) white flag
+cmpDigitTwo["s"] := "{u+2691}" ; (⚑) black flag
+cmpDigitTwo["t"] := "{u+26a0}" ; (⚠) warning sign
+cmpDigitTwo["u"] := "{u+26a1}" ; (⚡) high voltage sign
+cmpDigitTwo["v"] := "{u+26d4}" ; (⛔) no entry
+
+cmpDigitThree["a"] := "{u+2701}" ; (✁) upper blade scissors
+cmpDigitThree["b"] := "{u+2702}" ; (✂) black scissors
+cmpDigitThree["c"] := "{u+2703}" ; (✃) lower blade scissors
+cmpDigitThree["d"] := "{u+2704}" ; (✄) white scissors
+cmpDigitThree["e"] := "{u+2706}" ; (✆) telephone location sign
+cmpDigitThree["f"] := "{u+2707}" ; (✇) tape drive
+cmpDigitThree["g"] := "{u+2708}" ; (✈) airplane
+cmpDigitThree["h"] := "{u+2709}" ; (✉) envelope
+cmpDigitThree["i"] := "{u+270a}" ; (✊) raised fist
+cmpDigitThree["j"] := "{u+270b}" ; (✋) raised hand
+cmpDigitThree["k"] := "{u+270c}" ; (✌) victory hand
+cmpDigitThree["l"] := "{u+270d}" ; (✍) writing hand
+cmpDigitThree["m"] := "{u+270e}" ; (✎) lower right pencil
+cmpDigitThree["n"] := "{u+270f}" ; (✏) pencil
+cmpDigitThree["o"] := "{u+2710}" ; (✐) upper right pencil
+cmpDigitThree["p"] := "{u+2711}" ; (✑) white nib
+cmpDigitThree["q"] := "{u+2712}" ; (✒) black nib
+cmpDigitThree["r"] := "{u+2713}" ; (✓) check mark
+cmpDigitThree["s"] := "{u+2714}" ; (✔) heavy check mark
+cmpDigitThree["t"] := "{u+2715}" ; (✕) multiplication x
+cmpDigitThree["u"] := "{u+2716}" ; (✖) heavy multiplication x
+cmpDigitThree["v"] := "{u+2717}" ; (✗) ballot x
+cmpDigitThree["w"] := "{u+2718}" ; (✘) heavy ballot x
+cmpDigitThree["x"] := "{u+2719}" ; (✙) outlined Greek cross
+cmpDigitThree["y"] := "{u+271a}" ; (✚) heavy Greek cross
+cmpDigitThree["z"] := "{u+271b}" ; (✛) open centre cross
+
+cmpDigitFour["a"] := "{u+271c}" ; (✜) heavy open centre cross
+cmpDigitFour["b"] := "{u+271d}" ; (✝) Latin cross
+cmpDigitFour["c"] := "{u+271e}" ; (✞) shadowed white Latin cross
+cmpDigitFour["d"] := "{u+271f}" ; (✟) outlined Latin cross
+cmpDigitFour["e"] := "{u+2720}" ; (✠) Maltese cross
+cmpDigitFour["f"] := "{u+2721}" ; (✡) star of David
+cmpDigitFour["g"] := "{u+2722}" ; (✢) four teardrop-spoked asterisk
+cmpDigitFour["h"] := "{u+2723}" ; (✣) four balloon-spoked asterisk
+cmpDigitFour["i"] := "{u+2724}" ; (✤) heavy four balloon-spoked asterisk
+cmpDigitFour["j"] := "{u+2725}" ; (✥) four club-spoked asterisk
+cmpDigitFour["k"] := "{u+2726}" ; (✦) black four-pointed star
+cmpDigitFour["l"] := "{u+2727}" ; (✧) white four-pointed star
+cmpDigitFour["m"] := "{u+2729}" ; (✩) stress outlined white star
+cmpDigitFour["n"] := "{u+272a}" ; (✪) circled white star
+cmpDigitFour["o"] := "{u+272b}" ; (✫) open centre black star
+cmpDigitFour["p"] := "{u+272c}" ; (✬) black centre white star
+cmpDigitFour["q"] := "{u+272d}" ; (✭) outlined black star
+cmpDigitFour["r"] := "{u+272e}" ; (✮) heavy outlined black star
+cmpDigitFour["s"] := "{u+272f}" ; (✯) pinwheel star
+cmpDigitFour["t"] := "{u+2730}" ; (✰) shadowed white star
+cmpDigitFour["u"] := "{u+2731}" ; (✱) heavy asterisk
+cmpDigitFour["v"] := "{u+2732}" ; (✲) open centre asterisk
+cmpDigitFour["w"] := "{u+2733}" ; (✳) eight-spoked asterisk
+cmpDigitFour["x"] := "{u+2734}" ; (✴) eight-pointed black star
+cmpDigitFour["y"] := "{u+2735}" ; (✵) eight-pointed pinwheel star
+cmpDigitFour["z"] := "{u+2736}" ; (✶) six-pointed black star
+
+cmpDigitFive["a"] := "{u+2737}" ; (✷) eight-pointed rectilinear black star
+cmpDigitFive["b"] := "{u+2738}" ; (✸) heavy eight-pointed rectilinear black star
+cmpDigitFive["c"] := "{u+2739}" ; (✹) twelve pointed black star
+cmpDigitFive["d"] := "{u+273a}" ; (✺) sixteen-pointed asterisk
+cmpDigitFive["e"] := "{u+273b}" ; (✻) teardrop-spoked asterisk
+cmpDigitFive["f"] := "{u+273c}" ; (✼) open centre teardrop-spoked asterisk
+cmpDigitFive["g"] := "{u+273d}" ; (✽) heavy teardrop-spoked asterisk
+cmpDigitFive["h"] := "{u+273e}" ; (✾) six-petalled black and white florette
+cmpDigitFive["i"] := "{u+273f}" ; (✿) black florette
+cmpDigitFive["j"] := "{u+2740}" ; (❀) white florette
+cmpDigitFive["k"] := "{u+2741}" ; (❁) eight-petalled outlined black florette
+cmpDigitFive["l"] := "{u+2742}" ; (❂) circled open centre eight-pointed star
+cmpDigitFive["m"] := "{u+2743}" ; (❃) heavy teardrop-spoked pinwheel asterisk
+cmpDigitFive["n"] := "{u+2744}" ; (❄) snowflake
+cmpDigitFive["o"] := "{u+2745}" ; (❅) tight trifoliate snowflake
+cmpDigitFive["p"] := "{u+2746}" ; (❆) heavy chevron snowflake
+cmpDigitFive["q"] := "{u+2747}" ; (❇) sparkle
+cmpDigitFive["r"] := "{u+2748}" ; (❈) heavy sparkle
+cmpDigitFive["s"] := "{u+2749}" ; (❉) balloon-spoked asterisk
+cmpDigitFive["t"] := "{u+274a}" ; (❊) eight teardrop-spoked propeller asterisk
+cmpDigitFive["u"] := "{u+274b}" ; (❋) heavy eight teardrop-spoked propeller asterisk
+cmpDigitFive["v"] := "{u+274d}" ; (❍) shadowed white circle
+cmpDigitFive["w"] := "{u+274f}" ; (❏) lower right drop-shadowed white square
+cmpDigitFive["x"] := "{u+2750}" ; (❐) upper right drop-shadowed white square
+cmpDigitFive["y"] := "{u+2751}" ; (❑) lower right shadowed white square
+cmpDigitFive["z"] := "{u+2752}" ; (❒) upper right shadowed white square
+
+cmpDigitSix["a"] := "{u+2756}" ; (❖) black diamond minus white x
+cmpDigitSix["b"] := "{u+2758}" ; (❘) light vertical bar
+cmpDigitSix["c"] := "{u+2759}" ; (❙) medium vertical bar
+cmpDigitSix["d"] := "{u+275a}" ; (❚) heavy vertical bar
+cmpDigitSix["e"] := "{u+275b}" ; (❛) heavy single turned comma quotation mark ornament
+cmpDigitSix["f"] := "{u+275c}" ; (❜) heavy single comma quotation mark ornament
+cmpDigitSix["g"] := "{u+275d}" ; (❝) heavy double turned comma quotation mark ornament
+cmpDigitSix["h"] := "{u+275e}" ; (❞) heavy double comma quotation mark ornament
+cmpDigitSix["i"] := "{u+275f}" ; (❟) heavy low single comma quotation mark ornament
+cmpDigitSix["j"] := "{u+2760}" ; (❠) heavy low double comma quotation mark ornament
+cmpDigitSix["k"] := "{u+2761}" ; (❡) curved stem paragraph sign ornament
+cmpDigitSix["l"] := "{u+2762}" ; (❢) heavy exclamation mark ornament
+cmpDigitSix["m"] := "{u+2763}" ; (❣) heavy heart exclamation mark ornament
+cmpDigitSix["n"] := "{u+2764}" ; (❤) heavy black heart
+cmpDigitSix["o"] := "{u+2765}" ; (❥) rotated heavy black heart bullet
+cmpDigitSix["p"] := "{u+2766}" ; (❦) floral heart
+cmpDigitSix["q"] := "{u+2767}" ; (❧) rotated floral heart bullet
+
+cmpDigitSeven["a"] := "{u+2794}" ; (➔) heavy wide-headed rightwards arrow
+cmpDigitSeven["b"] := "{u+2798}" ; (➘) heavy south east arrow
+cmpDigitSeven["c"] := "{u+2799}" ; (➙) heavy rightwards arrow
+cmpDigitSeven["d"] := "{u+279a}" ; (➚) heavy north east arrow
+cmpDigitSeven["e"] := "{u+279b}" ; (➛) drafting point rightwards arrow
+cmpDigitSeven["f"] := "{u+279c}" ; (➜) heavy round-tipped rightwards arrow
+cmpDigitSeven["g"] := "{u+279d}" ; (➝) triangle-headed rightwards arrow
+cmpDigitSeven["h"] := "{u+279e}" ; (➞) heavy triangle-headed rightwards arrow
+cmpDigitSeven["i"] := "{u+279f}" ; (➟) dashed triangle-headed rightwards arrow
+cmpDigitSeven["j"] := "{u+27a0}" ; (➠) heavy dashed triangle-headed rightwards arrow
+cmpDigitSeven["k"] := "{u+27a1}" ; (➡) black rightwards arrow
+cmpDigitSeven["l"] := "{u+27a2}" ; (➢) 3d top-lighted rightwards arrowhead
+cmpDigitSeven["m"] := "{u+27a3}" ; (➣) 3d bottom-lighted rightwards arrowhead
+cmpDigitSeven["n"] := "{u+27a4}" ; (➤) black rightwards arrowhead
+cmpDigitSeven["o"] := "{u+27a5}" ; (➥) heavy black curved downwards and rightwards arrow
+cmpDigitSeven["p"] := "{u+27a6}" ; (➦) heavy black curved upwards and rightwards arrow
+cmpDigitSeven["q"] := "{u+27a7}" ; (➧) squat black rightwards arrow
+cmpDigitSeven["r"] := "{u+27a8}" ; (➨) heavy concave-pointed black rightwards arrow
+cmpDigitSeven["s"] := "{u+27a9}" ; (➩) right-shaded white rightwards arrow
+cmpDigitSeven["t"] := "{u+27aa}" ; (➪) left-shaded white rightwards arrow
+cmpDigitSeven["u"] := "{u+27ab}" ; (➫) back-tilted shadowed white rightwards arrow
+cmpDigitSeven["v"] := "{u+27ac}" ; (➬) front-tilted shadowed white rightwards arrow
+cmpDigitSeven["w"] := "{u+27ad}" ; (➭) heavy lower right-shadowed white rightwards arrow
+cmpDigitSeven["x"] := "{u+27ae}" ; (➮) heavy upper right-shadowed white rightwards arrow
+cmpDigitSeven["y"] := "{u+27af}" ; (➯) notched lower right-shadowed white rightwards arrow
+cmpDigitSeven["z"] := "{u+27b1}" ; (➱) notched upper right-shadowed white rightwards arrow
+
+cmpDigitEight["a"] := "{u+27b2}" ; (➲) circled heavy white rightwards arrow
+cmpDigitEight["b"] := "{u+27b3}" ; (➳) white-feathered rightwards arrow
+cmpDigitEight["c"] := "{u+27b4}" ; (➴) black-feathered south east arrow
+cmpDigitEight["d"] := "{u+27b5}" ; (➵) black-feathered rightwards arrow
+cmpDigitEight["e"] := "{u+27b6}" ; (➶) black-feathered north east arrow
+cmpDigitEight["f"] := "{u+27b7}" ; (➷) heavy black-feathered south east arrow
+cmpDigitEight["g"] := "{u+27b8}" ; (➸) heavy black-feathered rightwards arrow
+cmpDigitEight["h"] := "{u+27b9}" ; (➹) heavy black-feathered north east arrow
+cmpDigitEight["i"] := "{u+27ba}" ; (➺) teardrop-barbed rightwards arrow
+cmpDigitEight["j"] := "{u+27bb}" ; (➻) heavy teardrop-shanked rightwards arrow
+cmpDigitEight["k"] := "{u+27bc}" ; (➼) wedge-tailed rightwards arrow
+cmpDigitEight["l"] := "{u+27bd}" ; (➽) heavy wedge-tailed rightwards arrow
+cmpDigitEight["m"] := "{u+27be}" ; (➾) open-outlined rightwards arrow
+cmpDigitEight["n"] := "{u+27c1}" ; (⟁) white triangle containing small white triangle
+
+
+; Compose : Chess Symbols (C)
+
+cmpCapitalC["k"] := "{u+2654}" ; (♔) white chess king
+cmpCapitalC["q"] := "{u+2655}" ; (♕) white chess queen
+cmpCapitalC["r"] := "{u+2656}" ; (♖) white chess rook
+cmpCapitalC["b"] := "{u+2657}" ; (♗) white chess bishop
+cmpCapitalC["n"] := "{u+2658}" ; (♘) white chess knight
+cmpCapitalC["p"] := "{u+2659}" ; (♙) white chess pawn
+cmpCapitalC["K"] := "{u+265a}" ; (♚) black chess king
+cmpCapitalC["Q"] := "{u+265b}" ; (♛) black chess queen
+cmpCapitalC["R"] := "{u+265c}" ; (♜) black chess rook
+cmpCapitalC["B"] := "{u+265d}" ; (♝) black chess bishop
+cmpCapitalC["N"] := "{u+265e}" ; (♞) black chess knight
+cmpCapitalC["P"] := "{u+265f}" ; (♟) black chess pawn
+
+
+; Compose : Playing Card Suit Symbols (S)
+
+cmpCapitalS["c"] := "{u+2663}" ; (♣) black club suit
+cmpCapitalS["C"] := "{u+2667}" ; (♧) white club suit
+cmpCapitalS["d"] := "{u+2666}" ; (♦) black diamond suit
+cmpCapitalS["D"] := "{u+2662}" ; (♢) white diamond suit
+cmpCapitalS["h"] := "{u+2665}" ; (♥) black heart suit
+cmpCapitalS["H"] := "{u+2661}" ; (♡) white heart suit
+cmpCapitalS["p"] := "{u+2660}" ; (♠) black spade suit
+cmpCapitalS["P"] := "{u+2664}" ; (♤) white spade suit
+
+
+; Compose : Dingbat Negative Circled Digits (n)
+
+cmpSmallN["1"] := "{u+2776}" ; (❶) dingbat negative circled digit 1
+cmpSmallN["2"] := "{u+2777}" ; (❷) dingbat negative circled digit 2
+cmpSmallN["3"] := "{u+2778}" ; (❸) dingbat negative circled digit 3
+cmpSmallN["4"] := "{u+2779}" ; (❹) dingbat negative circled digit 4
+cmpSmallN["5"] := "{u+277a}" ; (❺) dingbat negative circled digit 5
+cmpSmallN["6"] := "{u+277b}" ; (❻) dingbat negative circled digit 6
+cmpSmallN["7"] := "{u+277c}" ; (❼) dingbat negative circled digit 7
+cmpSmallN["8"] := "{u+277d}" ; (❽) dingbat negative circled digit 8
+cmpSmallN["9"] := "{u+277e}" ; (❾) dingbat negative circled digit 9
+cmpSmallN["0"] := "{u+277f}" ; (❿) dingbat negative circled digit 10
+
+
; Configuration : 'Right Alt' and 'Right Alt + Shift' on US QWERTY
>!a:: {
ihB.Start()
ihB.Wait()
- if (ihA.Input == "c") {
+ if (ihA.Input == "'") {
+ if cmpAcuteAccent.Has(ihB.Input)
+ Send cmpAcuteAccent[ihB.Input]
+ }
+ else if (ihA.Input == "``") {
+ if cmpGraveAccent.Has(ihB.Input)
+ Send cmpGraveAccent[ihB.Input]
+ }
+ else if (ihA.Input == chr(34)) {
+ if cmpDiaeresis.Has(ihB.Input)
+ Send cmpDiaeresis[ihB.Input]
+ }
+ else if (ihA.Input == "c") {
if cmpCircumflex.Has(ihB.Input)
Send cmpCircumflex[ihB.Input]
}
+ else if (ihA.Input == "~") {
+ if cmpTilde.Has(ihB.Input)
+ Send cmpTilde[ihB.Input]
+ }
+ else if (ihA.Input == ",") {
+ if cmpCedillaOgonek.Has(ihB.Input)
+ Send cmpCedillaOgonek[ihB.Input]
+ }
else if (ihA.Input == "v") {
if cmpCaron.Has(ihB.Input)
Send cmpCaron[ihB.Input]
if cmpStroke.Has(ihB.Input)
Send cmpStroke[ihB.Input]
}
- else if (ihA.Input == ",") {
- if cmpCedillaOgonek.Has(ihB.Input)
- Send cmpCedillaOgonek[ihB.Input]
- }
else if (ihA.Input == "b") {
if cmpBreveSpecial.Has(ihB.Input)
Send cmpBreveSpecial[ihB.Input]
}
- else if (ihA.Input == "B") {
- if cmpInvertedBreve.Has(ihB.Input)
- Send cmpInvertedBreve[ihB.Input]
- }
- else if (ihA.Input == "'") {
- if cmpAcuteAccent.Has(ihB.Input)
- Send cmpAcuteAccent[ihB.Input]
- }
- else if (ihA.Input == chr(34)) {
- if cmpDiaeresis.Has(ihB.Input)
- Send cmpDiaeresis[ihB.Input]
- }
else if (ihA.Input == "=") {
if cmpDoubleAcute.Has(ihB.Input)
Send cmpDoubleAcute[ihB.Input]
}
- else if (ihA.Input == "``") {
- if cmpGraveAccent.Has(ihB.Input)
- Send cmpGraveAccent[ihB.Input]
- }
else if (ihA.Input == "G") {
if cmpDoubleGrave.Has(ihB.Input)
Send cmpDoubleGrave[ihB.Input]
}
- else if (ihA.Input == "~") {
- if cmpTilde.Has(ihB.Input)
- Send cmpTilde[ihB.Input]
+ else if (ihA.Input == "B") {
+ if cmpInvertedBreve.Has(ihB.Input)
+ Send cmpInvertedBreve[ihB.Input]
}
else if (ihA.Input == "h") {
- if cmpHook.Has(ihB.Input)
- Send cmpHook[ihB.Input]
+ if cmpSmallH.Has(ihB.Input)
+ Send cmpSmallH[ihB.Input]
+ }
+ else if (ihA.Input == "f") {
+ if cmpSmallF.Has(ihB.Input)
+ Send cmpSmallF[ihB.Input]
}
else if (ihA.Input == "l") {
- if cmpLatinGreek.Has(ihB.Input)
- Send cmpLatinGreek[ihB.Input]
+ if cmpSmallL.Has(ihB.Input)
+ Send cmpSmallL[ihB.Input]
}
- else if (ihA.Input == "t") {
- if cmpTurned.Has(ihB.Input)
- Send cmpTurned[ihB.Input]
+ else if (ihA.Input == "r") {
+ if cmpSmallR.Has(ihB.Input)
+ Send cmpSmallR[ihB.Input]
}
else if (ihA.Input == "$") {
if cmpCurrency.Has(ihB.Input)
if cmpSymbols.Has(ihB.Input)
Send cmpSymbols[ihB.Input]
}
- else if (ihA.Input == "f") {
- if cmpFlorette.Has(ihB.Input)
- Send cmpFlorette[ihB.Input]
- }
- else if (ihA.Input == "C") {
- if cmpCapitalC.Has(ihB.Input)
- Send cmpCapitalC[ihB.Input]
- }
- else if (ihA.Input == "S") {
- if cmpCapitalS.Has(ihB.Input)
- Send cmpCapitalS[ihB.Input]
- }
- else if (ihA.Input == "1") {
- if cmpOne.Has(ihB.Input)
- Send cmpOne[ihB.Input]
- }
- else if (ihA.Input == "2") {
- if cmpTwo.Has(ihB.Input)
- Send cmpTwo[ihB.Input]
- }
- else if (ihA.Input == "3") {
- if cmpThree.Has(ihB.Input)
- Send cmpThree[ihB.Input]
- }
- else if (ihA.Input == "4") {
- if cmpFour.Has(ihB.Input)
- Send cmpFour[ihB.Input]
- }
- else if (ihA.Input == "5") {
- if cmpFive.Has(ihB.Input)
- Send cmpFive[ihB.Input]
- }
- else if (ihA.Input == "7") {
- if cmpSeven.Has(ihB.Input)
- Send cmpSeven[ihB.Input]
- }
- else if (ihA.Input == "0") {
- if cmpZero.Has(ihB.Input)
- Send cmpZero[ihB.Input]
- }
else if (ihA.Input == "m") {
if cmpMathSymbols.Has(ihB.Input)
Send cmpMathSymbols[ihB.Input]
if cmpCapitalI.Has(ihB.Input)
Send cmpCapitalI[ihB.Input]
}
- else if (ihA.Input == "O") {
- if cmpCapitalO.Has(ihB.Input)
- Send cmpCapitalO[ihB.Input]
- }
- else if (ihA.Input == "T") {
- if cmpCapitalT.Has(ihB.Input)
- Send cmpCapitalT[ihB.Input]
- }
else if (ihA.Input == "n") {
if cmpSmallN.Has(ihB.Input)
Send cmpSmallN[ihB.Input]
if cmpCapitalN.Has(ihB.Input)
Send cmpCapitalN[ihB.Input]
}
+ else if (ihA.Input == "O") {
+ if cmpCapitalO.Has(ihB.Input)
+ Send cmpCapitalO[ihB.Input]
+ }
+ else if (ihA.Input == "S") {
+ if cmpCapitalS.Has(ihB.Input)
+ Send cmpCapitalS[ihB.Input]
+ }
+ else if (ihA.Input == "t") {
+ if cmpSmallT.Has(ihB.Input)
+ Send cmpSmallT[ihB.Input]
+ }
+ else if (ihA.Input == "T") {
+ if cmpCapitalT.Has(ihB.Input)
+ Send cmpCapitalT[ihB.Input]
+ }
else if (ihA.Input == "P") {
if cmpCapitalP.Has(ihB.Input)
Send cmpCapitalP[ihB.Input]
}
- else if (ihA.Input == "r") {
- if cmpSmallR.Has(ihB.Input)
- Send cmpSmallR[ihB.Input]
+ else if (ihA.Input == ";") {
+ if cmpSemicolon.Has(ihB.Input)
+ Send cmpSemicolon[ihB.Input]
}
else if (ihA.Input == "*") {
if cmpAsterisk.Has(ihB.Input)
Send cmpPercent[ihB.Input]
}
else if (ihA.Input == "8") {
- if cmpEight.Has(ihB.Input)
- Send cmpEight[ihB.Input]
+ if cmpDigitEight.Has(ihB.Input)
+ Send cmpDigitEight[ihB.Input]
}
else if (ihA.Input == "<") {
if cmpLessThan.Has(ihB.Input)
if cmpGreaterThan.Has(ihB.Input)
Send cmpGreaterThan[ihB.Input]
}
+ else if (ihA.Input == "1") {
+ if cmpDigitOne.Has(ihB.Input)
+ Send cmpDigitOne[ihB.Input]
+ }
+ else if (ihA.Input == "2") {
+ if cmpDigitTwo.Has(ihB.Input)
+ Send cmpDigitTwo[ihB.Input]
+ }
+ else if (ihA.Input == "3") {
+ if cmpDigitThree.Has(ihB.Input)
+ Send cmpDigitThree[ihB.Input]
+ }
+ else if (ihA.Input == "4") {
+ if cmpDigitFour.Has(ihB.Input)
+ Send cmpDigitFour[ihB.Input]
+ }
+ else if (ihA.Input == "5") {
+ if cmpDigitFive.Has(ihB.Input)
+ Send cmpDigitFive[ihB.Input]
+ }
+ else if (ihA.Input == "7") {
+ if cmpDigitSeven.Has(ihB.Input)
+ Send cmpDigitSeven[ihB.Input]
+ }
+ else if (ihA.Input == "0") {
+ if cmpDigitZero.Has(ihB.Input)
+ Send cmpDigitZero[ihB.Input]
+ }
else if (ihA.Input == "[") {
if cmpBracketLeft.Has(ihB.Input)
Send cmpBracketLeft[ihB.Input]
}
- else if (ihA.Input == ";") {
- if cmpSemicolon.Has(ihB.Input)
- Send cmpSemicolon[ihB.Input]
- }
else if (ihA.Input == "]") {
if cmpBracketRight.Has(ihB.Input)
Send cmpBracketRight[ihB.Input]
}
+ else if (ihA.Input == "C") {
+ if cmpCapitalC.Has(ihB.Input)
+ Send cmpCapitalC[ihB.Input]
+ }
else if (ihA.Input == "e") {
if cmpSmallE.Has(ihB.Input)
Send cmpSmallE[ihB.Input]
if cmpCapitalV.Has(ihB.Input)
Send cmpCapitalV[ihB.Input]
}
+ else if (ihA.Input == "6") {
+ if cmpDigitSix.Has(ihB.Input)
+ Send cmpDigitSix[ihB.Input]
+ }
}